home *** CD-ROM | disk | FTP | other *** search
- package com.ms.directX;
-
- import com.ms.com.IUnknown;
-
- public interface IdSoundBuffer extends IUnknown {
- void Stop();
-
- void InternalSetObject(IUnknown var1);
-
- IUnknown InternalGetObject();
-
- void SetCurrentPosition(int var1);
-
- int GetPan();
-
- void SetPan(int var1);
-
- void GetCurrentPosition(DSCursors var1);
-
- int GetVolume();
-
- void SetVolume(int var1);
-
- void Initialize(dSound var1, DSBufferDesc var2, byte[] var3);
-
- void WriteBuffer(int var1, int var2, byte[] var3, int var4);
-
- void Restore();
-
- void GetCaps(DSBCaps var1);
-
- int GetFormatSize();
-
- void GetFormat(byte[] var1, int var2);
-
- int GetFrequency();
-
- void SetFormat(byte[] var1);
-
- void Play(int var1, int var2, int var3);
-
- int GetStatus();
-
- void TransferToSoundBuffer(DSResourceDesc var1, int var2);
-
- void SetFrequency(int var1);
- }
-